Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
8 | |||
9 | /** |
||
10 | * Get list of certifications for movies |
||
11 | * @returns { Promise<CertificationsResponse> } |
||
12 | * @see https://developers.themoviedb.org/3/certifications/get-movie-certifications |
||
13 | */ |
||
14 | public async movies(): Promise<CertificationsResponse> { |
||
15 | return this.sendGetRequest('certification/movie/list'); |
||
16 | } |
||
28 |